.flip-box {
  width: 270px;
  height: 380px;
  margin: 0px 0;
  position: relative;
  margin-bottom: 30px;
}

.flip-item {
  position: absolute;
  left: 0;
  top: 0;
  width: 270px;
  height: 380px;
  transition: all 0.5s ease-in-out;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  box-sizing: border-box;
  border-radius: 8px;
  cursor: pointer;
  background: #fff;
  box-sizing: border-box;
}
.flip-item:hover{
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}
.flip-item-front {
  transform: rotateY(0deg);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flip-item-back {
  transform: rotateY(180deg);
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 1rem;
}

.flip-box:hover .flip-item-front {
  z-index: 1;
  transform: rotateY(180deg) scale(1.2);
}

.flip-box:hover .flip-item-back {
  z-index: 2;
  transform: rotateY(0deg);
  transition: all 0.5s;
}
.flipfrontimage {
  width: 270px;
  height: 254px;
  flex-shrink: 0;
  overflow: hidden;
}
.flipfrontimage img {
  width: 270px;
  height: 254px;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}
.flipcontent {
  display: flex;
  flex-direction: column;
  width: 90%;
  height: 80%;
  justify-content: space-around;
}
.flipcontenttitle {
  font-family: "思源黑体 CN Bold", "思源黑体 CN Regular", "思源黑体 CN",
  sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
  color: #333;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-top: 6px;
}
.flipcontentdesc {
  font-family: "思源黑体 CN", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: #666;
  overflow: hidden;
  height: 60px !important;
  text-overflow: ellipsis;
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
}
.flipbackcontent {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 1rem;
}
.flipbacktitle {
  font-family: "思源黑体 CN Bold", "思源黑体 CN Regular", "思源黑体 CN",
  sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.976470588235294);
}
.flipbackdetail {
  font-family: "思源黑体 CN", sans-serif;
  font-size: 14px;
}

.flipbackdesc {
  font-family: "思源黑体 CN", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  color: rgba(105, 105, 105, 0.976);
}